home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / dos / communic / pcmail / daemon / sysexits.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-05  |  1.0 KB  |  48 lines

  1. /*++
  2.  
  3. /* NAME
  4.  
  5. /*    sysexits 5
  6.  
  7. /* SUMMARY
  8.  
  9. /*    exit status codes for programs called by sendmail
  10.  
  11. /* PROJECT
  12.  
  13. /*    pc-mail
  14.  
  15. /* PACKAGE
  16.  
  17. /*    nfs
  18.  
  19. /* SYNOPSIS
  20.  
  21. /*    #include "sysexits.h"
  22.  
  23. /* DESCRIPTION
  24.  
  25. /* .nf
  26.  
  27.  
  28.  
  29.  /* sendmail-compatible exit status codes */
  30.  
  31.  
  32.  
  33. #define    EX_OK        0
  34.  
  35. #define EX_USAGE    64
  36.  
  37. #define EX_DATAERR    65
  38.  
  39. #define EX_NOINPUT    66
  40.  
  41. #define EX_NOUSER    67
  42.  
  43. #define EX_NOHOST    68
  44.  
  45. #define EX_UNAVAILABLE    69
  46.  
  47. #define EX_SOFTWARE    70
  48.  
  49. #define EX_OSERR    71
  50.  
  51. #define EX_OSFILE    72
  52.  
  53. #define EX_CANTCREAT    73
  54.  
  55. #define EX_IOERR    74
  56.  
  57. #define EX_TEMPFAIL    75
  58.  
  59. #define EX_PROTOCOL    76
  60.  
  61. #define EX_NOPERM    77
  62.  
  63. /* AUTHOR(S)
  64.  
  65. /*    Wietse Z. Venema
  66.  
  67. /*    Eindhoven University of Technology
  68.  
  69. /*    Department of Mathematics and Computer Science
  70.  
  71. /*    Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
  72.  
  73. /*
  74.  
  75. /*    These codes were actually defined by Eric Allman, the originator
  76.  
  77. /*    of the sendmail program.
  78.  
  79. /* CREATION DATE
  80.  
  81. /*    Sun Oct 29 16:03:19 MET 1989
  82.  
  83. /* LAST MODIFICATION
  84.  
  85. /*    10/29/89 22:29:47
  86.  
  87. /* VERSION/RELEASE
  88.  
  89. /*    1.1
  90.  
  91. /*--*/
  92.  
  93.  
  94.  
  95.